home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE21 / TCP / oneI.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1996-09-27  |  238 b   |  22 lines

  1. unit oneI;
  2.  
  3. interface
  4.  
  5. uses isp;
  6.  
  7. const
  8.   OneI_BitMap = 0;
  9.   OneI_Wav = 1;
  10.   OneI_exe = 3;
  11.  
  12.  
  13. type
  14.   PTFisherTCP = ^TFisherTCP;
  15.   TFisherTCP = record
  16.     size : longint;
  17.     tag : integer;
  18.   end;
  19.  
  20. implementation
  21. end.
  22.